home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Demos / TrueBASIC Demo / User's Guide / Dots < prev    next >
Encoding:
Text File  |  1985-10-03  |  156 b   |  10 lines  |  [TEXT/TRUE]

  1. ! Plot random points.
  2. !
  3. DO
  4.    LET x = Rnd        ! Pick two random numbers
  5.    LET y = Rnd
  6.    PLOT x,y           ! Plot a point at the random spot
  7. LOOP
  8.  
  9. END
  10.